home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / netBoot / h / systime.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-05-13  |  386 b   |  25 lines

  1.  
  2. /*    @(#)systime.h 1.1 86/09/27 SMI    */
  3.  
  4. /*
  5.  * Copyright (c) 1986 by Sun Microsystems, Inc.
  6.  */
  7.  
  8. /*
  9.  * Structure returned by gmtime and localtime calls (see ctime(3)).
  10.  */
  11. struct tm {
  12.     int    tm_sec;
  13.     int    tm_min;
  14.     int    tm_hour;
  15.     int    tm_mday;
  16.     int    tm_mon;
  17.     int    tm_year;
  18.     int    tm_wday;
  19.     int    tm_yday;
  20.     int    tm_isdst;
  21. };
  22.  
  23. extern    struct tm *gmtime(), *localtime();
  24. extern    char *asctime(), *ctime();
  25.